home *** CD-ROM | disk | FTP | other *** search
/ CD ROM Paradise Collection 4 / CD ROM Paradise Collection 4 1995 Nov.iso / program / swagd_f.zip / DOS.SWG / 0033_SAFEBOOT with FLUSH.pas < prev    next >
Pascal/Delphi Source File  |  1993-11-02  |  325b  |  23 lines

  1. {
  2. From: CHRIS PRIEDE
  3. Subj: Rebooting...
  4.  
  5. issue DOS Flush Buffers call AND reboot }
  6.  
  7. procedure SafeReboot; far; assembler;
  8. asm
  9.   mov   ah, 0Dh
  10.   int   21h
  11.   xor   cx, cx
  12. @1:
  13.   push  cx
  14.   int   28h
  15.   pop   cx
  16.   loop  @1
  17.   mov   ds, cx
  18.   mov   word ptr [472h], 1234h
  19.   dec   cx
  20.   push  cx
  21.   push  ds
  22. end;
  23.